/* General Reset */
* {
  margin: 0;
  padding: 0;
}
body,html{
  overflow-x: hidden;
}
.logo {
  width: 100px; 
  filter: brightness(0) invert(1); 
}
/* Navbar Styling */
.navbar {

  background-color: rgb(255, 255, 255);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  /* Aligns brand on the left and menu on the right */
  align-items: center;
  /* Ensures vertical alignment of items */
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.618);
   position: fixed !important; 
  top: 0; 
  width: 100%;
  z-index: 1000;
}

/* Logo Styling */
.navbar-brand img {
  width: 170px;
  /* transition: transform 0.3s ease, opacity 0.3s ease; */
  /* backdrop-filter:1px 10px 10px black  !important;
  filter: drop-shadow(1px 1px 1px black); */
  padding: 5px;
}


/* Navbar Links */
.navbar-nav {
  display: flex;
  gap: 3.5rem;
  /* Space between menu items */
  align-items: center;
}

.navbar-nav .nav-link {
  color: darkslategray;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgb(210, 63, 63);
}


/* Dropdown Styling */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  padding: 0.5rem 0;
background-color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  
}

.dropdown-item {
  color: darkslategray;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #eb194e;
  color: #ffffff;
}

/* Toggler Button */
.navbar-toggler {
  border: none;
  background-color: white;
  /* padding: 0.5rem; */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.navbar-toggler:hover {
  background-color: rgba(28, 26, 26, 0.429);
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23ff6347" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(0,0,0)" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgb(255, 255, 255), rgba(244, 62, 62, 0.9));
    border-radius: 8px;
  }

  .navbar-nav .nav-link {
    width: 100%;
    text-align: left;
    padding: 0.7rem;
  }

  .navbar-brand img {
    width: 130px;
    /* Adjust logo size for mobile screens */
  }
}




/* Make dropdown work on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
}










.section-full {
  padding: 120px 0;
  position: relative;
  backdrop-filter: blur(8px);
}

.contact-page {
  background: url('./photo/garments_2.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: fadeIn 2s ease-in-out;
}

.contact-details {
  color: #222;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
  line-height: 1.8;
  letter-spacing: 0.5px;
  
}

.contact-box h5 {
  font-weight: 800;
  font-size: 20px;
  color: #000;
}

.contact-box {
  margin-bottom: 40px;
  padding: 15px;
  border: none;
  height: 708px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.inquiry-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: slideUp 1.5s ease-in-out;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 15px;
  margin: 20px 0;
  border: 1px solid rgba(200, 200, 200, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: #eb194e;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(255, 99, 71, 0.5);
}

.file-box {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 10px;
}

.site-button {
  background-color: #eb194e; color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(255, 126, 95, 0.3);
}

.title-box {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #111;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.site-button:hover {
  transform: translateY(-3px);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .contact-details,
  .inquiry-form {
    margin-top: 20px;
    padding: 25px;
  }

  .site-button {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}











footer a {
  color: #000;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer i {
  font-size: 18px;
  color: #000;
}

footer div {
  margin: 10px;
}


.footer {
  display: flex; 
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color:rgb(210, 63, 63); 
  color: #777; 
  position: relative; 
}

.footer-left {
  position: absolute;
  left: 10px; /* Align to the left */
  text-align: left;
}

.footer-center {
  text-align: center; /* Center align the text */
}


@media (max-width: 768px) {
  footer div {
    flex: 1 1 100%;
  }
}
.quick_link_li{
  color: rgb(255, 255, 255);
  text-decoration: none !important;
  font-weight: 500;

}
.quick_link_li:hover{
  color: black;
}












.whatsapp{
  height: 50px;
  width: 50px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  position: fixed;
  bottom: 80px;
  /* left: 100px; */
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.whats{
  font-size: 50px;
}

@media screen and (min-width: 0px) and (max-width: 480px) {

  .whatsapp{
    height: 35px;
    width: 35px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    position: fixed;
    bottom: 70px;
    /* left: 100px; */
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
   
  }
  .whats{
    font-size: 30px;
  }

}
